Socket
Socket
Sign inDemoInstall

pessimism

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pessimism

A fast HAMT Map intended for KV caching and optimistic updates


Version published
Maintainers
1
Created
Source

pessimism

A fast and compact HAMT-based KV-Cache with optimistic entries

pessimism is a fast and compact KV-Cache primarily built for @urql/exchange-graphcache. It's a functional and immutable HAMT structure, which increases structural sharing, while keeping memory usage compact. It supports optimistic entries, which can be invalidated in a single go.

Usage

This library works with both TypeScript and BuckleScript (Reason/OCaml).

yarn add pessimism
# or
npm install --save pessimism

The basic methods support making a map and setting, getting, and removing entries:

import * as Map from 'pessimism';

let map = Map.set(Map.make(), "key", "value");
Map.get(map, "key"); // "value"

map = Map.remove(map, "key");
Map.get(map, "key"); // undefined

Optimistic entries can be set using setOptimistic and cleared using clearOptimistic:

import * as Map from 'pessimism';

let map = Map.set(Map.make(), "key", "value");
// Set an optimistic entry with the ID 1
map = Map.setOptimistic("key", "temp", 1);

Map.get(map, "key"); // "temp" which is the optimistic value

// Clear all optimistic entries with ID 1
map = Map.clearOptimistic(map, 1);
Map.get(map, "key"); // "value" which was the original value

Keywords

FAQs

Package last updated on 18 Sep 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc